home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 12 / CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso / CUCD / Games / DestructivePoker / sources / sources.lha / dealpile.h < prev    next >
C/C++ Source or Header  |  1997-02-20  |  505b  |  30 lines

  1. /*
  2.         dealpile.h
  3.  
  4.         V1.00 - 151096  Kimmo Teräväinen
  5.         -----   ------  ----------------
  6.         V0.01   201196  Started from junkpile.h
  7.         V0.10   130297  Ready, also srand called.
  8.  
  9. */
  10. #ifndef DC1_POKER_DEALPILE
  11. #define DC1_POKER_DEALPILE
  12.  
  13. #include <time.h>
  14. #include <stdlib.h>
  15. #include "cardpile.h"
  16.  
  17.  
  18. class cDealPile : public cCardPile {
  19. public:
  20.   cDealPile(int lkm=52,int x=20,int y=50) : cCardPile(lkm,x,y)
  21.   {
  22.     srand(clock());
  23.   }
  24.  
  25.   void Shuffle();
  26.   void Lift();
  27. };
  28.  
  29. #endif
  30.